45830d4c29f1fd5bcb95a16ec4b1466d18b177a6,community/kernel/src/main/java/org/neo4j/kernel/impl/core/NodeImpl.java,NodeImpl,getAllRelationships,#NodeManager#DirectionWrapper#,149
Before Change
Iterable<Relationship> getAllRelationships( NodeManager nodeManager, DirectionWrapper direction )
{
ensureRelationshipMapNotNull( nodeManager );
// We need to check if there are more relationships to load before grabbing
// the references to the RelIdArrays since otherwise there could be
After Change
Iterable<Relationship> getAllRelationships( final NodeManager nodeManager, final DirectionWrapper direction )
{
ensureRelationshipMapNotNull( nodeManager );
final NodeImpl nodeImpl = this;
return new Iterable<Relationship>()